home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / GraphicsWorkshop / Source / Converters / PCX_SCRATCH / kludge.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-14  |  401 b   |  17 lines

  1. #ifndef KLUDGE
  2. #define KLUDGE
  3.  
  4. #import <objc/Object.h>
  5. #import <streams/streams.h>
  6.  
  7. typedef unsigned long pixel;
  8.  
  9. NXStream *pcx_openr(char *name);
  10. void pcx_init(int argc, char *argv[]);
  11. void pcx_usage(char *mes);
  12. id pcx_close(NXStream *file);
  13. void pcx_error(char *err);
  14. id pcx_allocarray(int width, int height);
  15. void PCX_ASSIGN(int x, int y, unsigned char r, unsigned char g, unsigned char b);
  16.  
  17. #endif